home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / src / ops.cc < prev    next >
C/C++ Source or Header  |  1996-10-12  |  2KB  |  80 lines

  1. /*
  2.  
  3. Copyright (C) 1996 John W. Eaton
  4.  
  5. This file is part of Octave.
  6.  
  7. Octave is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2, or (at your option) any
  10. later version.
  11.  
  12. Octave is distributed in the hope that it will be useful, but WITHOUT
  13. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Octave; see the file COPYING.  If not, write to the Free
  19. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. */
  22.  
  23. #if defined (__GNUG__)
  24. #pragma implementation
  25. #endif
  26.  
  27. #ifdef HAVE_CONFIG_H
  28. #include <config.h>
  29. #endif
  30.  
  31. #include "ov-base.h"
  32.  
  33. #include "op-cm-cm.h"
  34. #include "op-cm-cs.h"
  35. #include "op-cm-m.h"
  36. #include "op-cm-s.h"
  37. #include "op-cs-cm.h"
  38. #include "op-cs-cs.h"
  39. #include "op-cs-m.h"
  40. #include "op-cs-s.h"
  41. #include "op-m-cm.h"
  42. #include "op-m-cs.h"
  43. #include "op-m-m.h"
  44. #include "op-m-s.h"
  45. #include "op-s-cm.h"
  46. #include "op-s-cs.h"
  47. #include "op-s-m.h"
  48. #include "op-s-s.h"
  49. #include "op-str-str.h"
  50.  
  51. void
  52. install_ops (void)
  53. {
  54.   install_base_type_conversions ();
  55.  
  56.   install_cm_cm_ops ();
  57.   install_cm_cs_ops ();
  58.   install_cm_m_ops ();
  59.   install_cm_s_ops ();
  60.   install_cs_cm_ops ();
  61.   install_cs_cs_ops ();
  62.   install_cs_m_ops ();
  63.   install_cs_s_ops ();
  64.   install_m_cm_ops ();
  65.   install_m_cs_ops ();
  66.   install_m_m_ops ();
  67.   install_m_s_ops ();
  68.   install_s_cm_ops ();
  69.   install_s_cs_ops ();
  70.   install_s_m_ops ();
  71.   install_s_s_ops ();
  72.   install_str_str_ops ();
  73. }
  74.  
  75. /*
  76. ;;; Local Variables: ***
  77. ;;; mode: C++ ***
  78. ;;; End: ***
  79. */
  80.